Main Bar

EasyASP Wizards


Here is a tutorial on using the Program's ASP Wizards


Section 1: The Contact Form Wizard

This section will walk you through creating a contact us page

  1. Create a database with one table and at least these fields: (Please note that you can create any type of field that you want. The one's below are only examples. This script uses 3 fields)
  2. Place the new database in your ODBC driver list by creating an entry in the File DSN section
  3. Open the Contact Form Wizard
  4. Click on the Create Html Form button
  5. Fill out the following information: (Again examples are placed in to help clarify)
  6. Click the next button and the html form page will be created and placed in a new file
  7. Now the ASP page wizard will show up.
  8. Fill in the following information as follows:
  9. Click the Finish button and it will create the ASP code page for the Contact Wizard.
  10. Now save the files. You could save the html page as contact.html and the asp page should be saved as the name you gave it in the HTML Action section of the first wizard part. for instance process.asp
  11. Now just place the files in your web server and you should be ready to go. You can then edit the pages to fit your needs like adding more entries and creating a better looking contact page.

Section 2: The Database Query Wizard

Below you will find the steps nessasary to create a quick database query using ASP.

  1. Create a database with one table and at least these fields: (Please note that you can create any type of field that you want. The one's below are only examples. This script uses 3 fields)
  2. Place the Database in your ODBC Administrator on the File DSN tab
  3. Next open up the Database Query Wizard and select the Create HTML Page button
  4. Here you will answer the following questions:
  5. Click the next button and the html page will be created in a new window
  6. Now the ASP Page will pop up
  7. Fill in the following information:
  8. Now click the Finish button and the ASP page will be created.
  9. Save the files as an HTML and ASP page. Make the HTML form page something like Query.html and the ASP page something like Process.asp, remember that you must name the ASP file the same thing you called it in the action section of the HTML page
  10. Place the files on the web server and put some data in to test with and you should be good to go.
  11. You can then edit the files to make them look and act the way you want them to. It should be easy to see how you would add fields to the output. Simply grab that Database Column name and place it in the retrieve code then in the output section as shown.

Section 3: The Login Wizard

Below you will find the steps nessasary to create a secure login page for your web site

  1. Create a database that contains one table and the following fields:
  2. Place the database in the ODBC administrator under the File DSN tab
  3. Open the Login Wizard
  4. Click on the Create HTML and ASP Code button
  5. Fill in the information as follows:
  6. Click the insert button and it will create a new page with the asp and html code within it.
  7. Save the file something you want like auth.asp or something like that
  8. At the top of each page that you want to be protected place the following code:
    < !--#INCLUDE FILE = "passwordcodepage.asp" -- >

  9. Please note that all protected pages must be saved as ASP pages and include the
    < %@ LANGUAGE="VBSCRIPT" % >
    tag at the top of the page